home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / games1 / nfa-hdin.lha / NFA-HDInstallers / TurboTrax / INSTALL next >
Text File  |  1992-09-02  |  1KB  |  57 lines

  1. ;
  2. ; TurboTrax Installer
  3. ;         By
  4. ;   Cyanide / Lsd
  5. ;
  6.  
  7. c:requestfile >ENV:Path TITLE "Please Select Install Path..." NOICONS DRAWERSONLY SYS:
  8.  
  9. IF WARN
  10.    Skip ABORT
  11. ENDIF
  12.  
  13. CD $Path
  14.  
  15. c:requestchoice >ENV:Choice TITLE "TurboTrax Installer" BODY "Create A Drawer For TurboTrax ?" GADGETS "Yes|No"
  16.  
  17. IF $Choice EQ 1
  18.   Makedir "TurboTrax"
  19.   CD "TurboTrax"
  20. Endif
  21.  
  22. Echo "Creating Directories and"
  23. Echo "Copying Files Please Wait!"
  24.  
  25. C:Copy Traxdisc1: ALL TO /TurboTrax quiet
  26. C:Copy Traxdisc2: ALL TO /TurboTrax quiet
  27. C:Copy Traxdisc3: ALL TO /TurboTrax quiet
  28.  
  29. Echo "Deleting unwanted files.."
  30.  
  31. C:Delete /TurboTrax/Empty.info Quiet
  32. C:Delete /TurboTrax/HDInstall Quiet
  33. C:Delete /TurboTrax/HDInstall.info Quiet
  34. C:Delete /TurboTrax/Install-ii Quiet
  35. C:Delete /TurboTrax/Readme.First Quiet
  36. C:Delete /TurboTrax/Readme.First.info Quiet
  37. C:Delete /TurboTrax/User-Startup Quiet
  38.  
  39. C:Echo "Adding Assigns to your S:User-Startup"
  40.  
  41. C:Echo "" >>S:User-Startup
  42. C:Echo ";* Begin TurboTrax" >>S:User-Startup
  43. C:Echo "Assign TraxDisc1: DH?:TurboTrax" >>S:User-Startup
  44. C:Echo "Assign TraxDisc2: DH?:TurboTrax" >>S:User-Startup
  45. C:Echo "Assign TraxDisc3: DH?:TurboTrax" >>S:User-Startup
  46. C:Echo ";* End TurboTrax" >>S:User-Startup
  47. C:Echo "" >>S:User-Startup
  48.  
  49. C:requestchoice >ENV:Choice TITLE "TurboTrax Installer" BODY "Installation Complete" GADGETS "OK"
  50. Skip End
  51.  
  52. Lab Abort
  53. C:requestchoice >ENV:Choice TITLE "TurboTrax Installer" BODY "Installation Aborted" GADGETS "OK"
  54.  
  55. Lab End
  56.  
  57.